home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 89 / PIWD89.iso / pc / CONTENTS / BONUS / FULL / wikiwriter / setup-ww2x.exe / {app} / help / tutor11.db < prev    next >
Text File  |  2002-09-25  |  1KB  |  40 lines

  1. @@title WikiWriter Tutorial: Construct tables
  2. .nav WikiWriter Tutorial: ((tutor10|Prev)) | ((tutor00|Up)) | ((tutor12|Next))
  3. .end
  4. == Construct tables
  5.  
  6. For basic tables you could use the HTML PRE tag:
  7. <pre>
  8. <pre>
  9. --------------------------------------
  10. Some text          Some more text
  11. A word or two      Maybe three or four
  12. --------------------------------------
  13. </pre>
  14. </pre>
  15.  
  16. gives you:
  17. <pre>
  18. --------------------------------------
  19. Some text          Some more text
  20. A word or two      Maybe three or four
  21. --------------------------------------
  22. </pre>
  23.  
  24. That's not really elegant, but will sometimes do the job. To get into really fancy tables, you have to use HTML markup.
  25. <pre>
  26. <table border=1>
  27. <tr><td>One Cell</td><td>Another cell</td></tr>
  28. <tr><td colspan=2>Big 2-column cell</td></tr>
  29. </table>
  30. </pre>
  31. gives you:
  32. <table border=1>
  33. <tr><td>One Cell</td><td>Another cell</td></tr>
  34. <tr><td colspan=2>Big 2-column cell</td></tr>
  35. </table>
  36. I looked at some methods for simplifying table markup in the wiki manner, but they all came out almost as complicated as the basic HTML, without the flexibility. If you really want to use tables for layout instead of the sophisticated, simple, modern CSS methods, you need to learn how to do it in HTML.
  37. .nav WikiWriter Tutorial: ((tutor10|Prev)) | ((tutor00|Up)) | ((tutor12|Next))
  38. .end
  39.  
  40.